delegate$19765$ - traduzione in greco
Diclib.com
Dizionario ChatGPT
Inserisci una parola o una frase in qualsiasi lingua 👆
Lingua:

Traduzione e analisi delle parole tramite l'intelligenza artificiale ChatGPT

In questa pagina puoi ottenere un'analisi dettagliata di una parola o frase, prodotta utilizzando la migliore tecnologia di intelligenza artificiale fino ad oggi:

  • come viene usata la parola
  • frequenza di utilizzo
  • è usato più spesso nel discorso orale o scritto
  • opzioni di traduzione delle parole
  • esempi di utilizzo (varie frasi con traduzione)
  • etimologia

delegate$19765$ - traduzione in greco

TYPE-SAFE FUNCTION POINTER USED BY THE MICROSOFT COMMON LANGUAGE INFRASTRUCTURE
Anonymous delegate; Delegates (.NET); Multicast delegate; Multicast delegation; Delegate (.NET); Delegate (object-oriented programming); Singlecast delegate

delegate      
n. αντιπρόσωπος
permanent representative         
HEAD OF A DIPLOMATIC MISSION TO AN INTERNATIONAL ORGANISATION
Permanent Delegate; Permanent Representatives; Permanent Representative; Perm rep; Permanent delegate
μόνιμος αντιπρόσωπος

Definizione

delegate
¦ noun 'd?l?g?t a person sent or authorized to represent others, in particular a representative sent to a conference.
?a member of a committee.
¦ verb 'd?l?ge?t entrust (a task or responsibility) to another person.
?authorize (someone) to act as a representative or on one's behalf: Edward was delegated to meet new arrivals.
Derivatives
delegable 'd?l?g?b(?)l adjective
delegator noun
Origin
ME: from L. delegatus 'sent on a commission', from delegare, from de- 'down' + legare 'depute'.

Wikipedia

Delegate (CLI)

A delegate is a form of type-safe function pointer used by the Common Language Infrastructure (CLI). Delegates specify a method to call and optionally an object to call the method on. Delegates are used, among other things, to implement callbacks and event listeners. A delegate object encapsulates a reference to a method. The delegate object can then be passed to code that can call the referenced method, without having to know at compile time which method will be invoked.

A multicast delegate is a delegate that points to several methods. Multicast delegation is a mechanism that provides functionality to execute more than one method. There is a list of delegates maintained internally, and when the multicast delegate is invoked, the list of delegates is executed.

In C#, delegates are often used to implement callbacks in event driven programming. For example, a delegate may be used to indicate which method should be called when the user clicks on some button. Delegates allow the programmer to notify several methods that an event has occurred.